home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / ch_3.5 / bcd / edge / README < prev    next >
Encoding:
Text File  |  1999-09-11  |  1.4 KB  |  38 lines

  1. /*
  2.  * (c) Copyright 1988 by
  3.  * Robotics Principles Research Department, ATT Bell Laboratories.
  4.  * All rights reserved.
  5.  * Last modified 6/21/88 Ingemar J. Cox
  6.  * Revised 11/11/88 Ingemar J. cox
  7.  */
  8.                      BOIE-COX EDGE DETECTOR
  9.  
  10. Two main programs, bc and cb.
  11.  
  12. bcd -h -t Filter_Width Optional_Threshold < Input_File > Output_File
  13.  
  14. bcd takes its Input_File from standard input, and writes to standard
  15. out.
  16. The option "-h" DISABLES hysteresis thresholding.
  17. The option "-t" DISABLES thinning
  18.  
  19. Both the Input_File and the Output_File are in binary form. It is
  20. assumed that the image is stored row at a time with a 10 byte header
  21. at the front. The header consists of a two byte type field.
  22. Followed by nx (two bytes) and ny (two bytes),
  23. the row and column dimensions. The remaining four bytes are unused.
  24. ********************************************************************
  25. WARNING: The files bcd.c and write.c should be modified to follow
  26. the image format used at this site.
  27. ********************************************************************
  28.  
  29. The edge detector requires the user to provide both the sigma of the
  30. filter (measured in pixels) and a threshold.
  31. For most images, 1.5 appears
  32. to be a commonly used value for sigma.
  33.  
  34. It is recommended that no threshold be supplied.
  35. However, the automatic thresholding can be overrided be specifying
  36. the desired numerical threshold.
  37.  
  38.